home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / ProcessDir.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-22  |  413 b   |  24 lines

  1. #ifndef PROCESSDIR_H
  2. #define PROCESSDIR_H
  3.  
  4. #ifndef DOS_DOSASL_H
  5. #include <dos/dosasl.h>
  6. #endif
  7.  
  8. #ifndef AVL_H
  9. #include "AVL.h"
  10. #endif
  11.  
  12. extern struct MyAnchorPath
  13. {
  14.   struct AnchorPath AnchorPath;
  15.   char String[1023];
  16. } ALIGN (AnchorPath);
  17.  
  18. extern int CallMatchEnd;
  19.  
  20. void ProcessDir1 (int, char *, void (*)(char *));
  21. void ProcessDir2 (int, struct AVLTree *, void (*)(struct AnyNode *));
  22.  
  23. #endif /* PROCESSDIR_H */
  24.